`DesignMode` in subcontrols is not set correctly?
        Posted  
        
            by 
                affan
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by affan
        
        
        
        Published on 2010-12-21T10:51:41Z
        Indexed on 
            2010/12/21
            10:54 UTC
        
        
        Read the original article
        Hit count: 281
        
I have a compound control contains nested controls. The problem i am facing is that control read properties from a global setting class which is static and intern read from setting file. To stop individual control from accessing configuration in design mode i added check in each control.
If(!DesignMode){
    ...
    //Initialize properties e.g. prop = AppConfig.GetProperty("prop1");
}
The problem is that individual control work fine when open in VS. But when i open top control containing nested control i get error by VS designer. The error is that in a nested control DesignMode=false for some reason. 
I also created a test app and created a simple control within another control to test if there is a problem with VS but it seem to work correctly for any depth of controls.
I dont even know how to debug this. For now i comment out the property initializing code and build it and then open designer and there uncomment it and build it again to run it.
Did anyone came across this problem or is there any way to fix it.
© Stack Overflow or respective owner